chrome-devtools-frontend 1.0.968818 → 1.0.969345
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/front_end/panels/sources/CSSPlugin.ts +2 -0
- package/front_end/third_party/codemirror.next/README.chromium +10 -0
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +2 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -2
- package/front_end/third_party/codemirror.next/chunk/python.js +2 -1
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +574 -553
- package/front_end/third_party/codemirror.next/package.json +11 -11
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +4 -2
- package/package.json +1 -1
@@ -238,12 +238,14 @@ function createCSSTooltip(active: ActiveTooltip): CodeMirror.Tooltip {
|
|
238
238
|
changes: text === active.text ? undefined :
|
239
239
|
{from: active.pos, to: active.pos + text.length, insert: active.text},
|
240
240
|
});
|
241
|
+
widget.hideWidget();
|
241
242
|
view.focus();
|
242
243
|
}
|
243
244
|
});
|
244
245
|
widget.element.addEventListener('focusout', event => {
|
245
246
|
if (event.relatedTarget && !widget.element.contains(event.relatedTarget as Node)) {
|
246
247
|
view.dispatch({effects: setTooltip.of(null)});
|
248
|
+
widget.hideWidget();
|
247
249
|
}
|
248
250
|
}, false);
|
249
251
|
widget.element.addEventListener('mousedown', event => event.consume());
|
@@ -16,3 +16,13 @@ To update this package, adjust the version ranges in package.json if necessary,
|
|
16
16
|
```
|
17
17
|
|
18
18
|
It will use npm to locally install the necessary packages and their dependencies, and bundle them into a single file (codemirror.js and codemirror.d.ts) with rollup.
|
19
|
+
|
20
|
+
If you want to easily obtain all the latest versions of the packages, run the following:
|
21
|
+
|
22
|
+
```
|
23
|
+
npm i
|
24
|
+
npm outdated
|
25
|
+
```
|
26
|
+
|
27
|
+
This will show you a table with all the latest versions of each package.
|
28
|
+
You will need to manually update the versions in the `package.json` file.
|